home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Interactive Media Design Review 1999
/
Interactive Media Design Review 1999.iso
/
pc
/
Demos
/
Bombardier_PC
/
BSCRIPTS.CST
/
00116_Script_pictRol
< prev
next >
Wrap
Text File
|
1999-04-25
|
910b
|
37 lines
-- ⌐ 1998 @radical.media, inc. & Concurrent New Media Group, L.L.C.
-- Developed for Bombardier, Inc.
--
-- All programming developed by:
-- Robert Fabricant, Valerie Valoueva, Ossi Shaked,
-- Henry Sauvageot, Chris Howell & Chris Girand
--
-- Use of this code by parties other than @radical.media, inc. or their
--agents
-- without the express written consent of @radical.media, inc. AND Concurrent
-- New Media Group, L.L.C. is strictly prohibited.
------------------------------------------------------
on mouseEnter me
puppetsound 3,"subroll"
end
on mouseUp me
set frameName = getFrameName (me)
cursor -1
go to frameName
puppetsound 3,"mouse5"
end
on getFrameName me
set save = the itemDelimiter
set the itemDelimiter = "_"
set value = item 1 of (the frameLabel)
set the itemDelimiter = save
set value = value&"_exit"
return value
end